home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 September (IDG) / Sep99.iso / Shareware World / Info / For Developers / Finder Flags Plugin / Finder Flags Sources / Finder Flags Postlinker / EvenMoreFiles.h < prev    next >
Encoding:
Text File  |  1999-06-14  |  728 b   |  35 lines  |  [TEXT/CWIE]

  1. // EvenMoreFiles.h
  2. // Copyright © 1999 Polaschek Computing, Inc. All rights reserved.
  3. //
  4. // File utility functions I needed
  5. //
  6.  
  7. #ifndef EvenMoreFiles_H
  8. #define EvenMoreFiles_H
  9.  
  10. #if PRAGMA_ONCE
  11. #pragma once
  12. #endif
  13.  
  14. #ifndef __FILES__
  15. #include <Files.h>
  16. #endif
  17.  
  18. #ifdef __cplusplus
  19. extern "C" {
  20. #endif
  21.  
  22. OSErr FSpGetFXInfo(const FSSpec* spec, FXInfo* xInfo);
  23. OSErr FSpSetFXInfo(const FSSpec* spec, FXInfo* xInfo);
  24. OSErr FSpGetExtendedFileInfo(const FSSpec* spec, ExtendedFileInfo* extendedInfo);
  25. OSErr FSpSetExtendedFileInfo(const FSSpec* spec, ExtendedFileInfo* extendedInfo);
  26.  
  27. // It would probably make sense to have the DSInfo's as well, but
  28. // I don't need 'em just yet
  29.  
  30. #ifdef __cplusplus
  31. }
  32. #endif
  33.  
  34. #endif /* EvenMoreFiles_H */
  35.